home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / UTIL / Cron 1.0a7 Folder.sit / Cron 1.0a7 Folder / Cron Distribution / Cron Software / crontab < prev    next >
Text File  |  1996-05-27  |  599b  |  25 lines

  1. //    QuickRef: The fields of a crontab entry specify the following:
  2. //
  3. //    Field    Meaning
  4. //    -----    ------------------------------------------------------
  5. //      1        Minute (0-59)
  6. //      2        Hour (0-23)
  7. //      3        Day of the month (1-31)
  8. //      4        Month of the year (1-12)
  9. //      5        Day of the week (1-7, with 1=Monday)
  10. //      6        User name (unused)
  11. //      7+    Command name and arguments (if command is preceded by 
  12. //            "-b" cron executes it in the background).
  13.  
  14.  
  15.  
  16. //    We include this line to prove to the first time Cron user that 
  17. //    Cron actually works.
  18.  
  19. startup 0 : * * * * * nobody echo "Cron is alive and well."
  20.  
  21.  
  22.  
  23.  
  24.  
  25.